home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjftp11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  611 b   |  25 lines

  1. // Design Time Java Socket implementation. (HPP)
  2.  
  3. #ifndef _DTJFTP11_HPP
  4. #define _DTJFTP11_HPP
  5.  
  6. #include "dtjobjct11.hpp"
  7. #include "dtjinet11.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJFTP11 : public DTJInternet11
  10. {
  11.     public:
  12.         DTJFTP11( const MetaObject * pMetaObj );
  13.         virtual ~DTJFTP11();
  14.         
  15.         
  16.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  17.                    ostream& src,
  18.                    MMCodeGenerationParms& pGenParms );
  19. };
  20.  
  21. // needed for mdreader
  22. typedef DTJFTP11 DTpowersoft__dot__powerj__dot__net__dot__FTP__dot__11;
  23.  
  24. #endif // _DTJFTP11_HPP
  25.